home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / AECUR102.ZIP / contrib / curses / test / makefile next >
Makefile  |  1992-05-31  |  135b  |  8 lines

  1. CFLAGS = -O -I../inc
  2.  
  3. test : test.o ../lib/libcurses.a
  4.     gcc $(CFLAGS) $^ -lpc -o test
  5.  
  6. test.o : test.c
  7.     gcc $(CFLAGS) -c test.c
  8.